home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue71 / Construc / HELLO.DPR < prev    next >
Encoding:
Text File  |  2001-06-01  |  249 b   |  11 lines

  1. program hello;
  2. {$APPTYPE CONSOLE}
  3. begin
  4.   writeln('content-type: text/html');
  5.   writeln;
  6.   writeln('<html>');
  7.   writeln('<body bgcolor=ffffcc>');
  8.   writeln('<h1>Made in Kylix Desktop!</h1>');
  9.   writeln('</body>');
  10.   writeln('</html>')
  11. end.